Find the index of an itemΒΆ

Find the index of an item in a specified list.
L = [10, 30, 4, -6]
print(L.index(30))    # 1